Fix the branch protect/unprotect message
[stgit] / stgit / commands / export.py
index 5f43da5..3e318a9 100644 (file)
@@ -63,7 +63,7 @@ options = [make_option('-n', '--numbered',
 
 def func(parser, options, args):
     if len(args) == 0:
-        dirname = 'patches'
+        dirname = 'patches-%s' % crt_series.get_branch()
     elif len(args) == 1:
         dirname = args[0]
     else: