Changeset 8335:f8548e5b6122
- Timestamp:
- 12/01/07 21:36:01 (5 years ago)
- Branch:
- default
- File:
-
- 1 edited
-
sage/misc/hg.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sage/misc/hg.py
r8334 r8335 1014 1014 1015 1015 if (SAGE_INCOMING_SERVER == DEFAULT_SERVER): ## Always uses the "main" branch on the default server. 1016 temp_ branch_name = "main"1016 temp_in_branch_name = "main" 1017 1017 else: 1018 temp_branch_name = branch_current_hg() 1018 temp_in_branch_name = branch_current_hg() 1019 1020 if (SAGE_OUTGOING_SERVER == DEFAULT_SERVER): ## Always uses the "main" branch on the default server. 1021 temp_out_branch_name = "main" 1022 else: 1023 temp_out_branch_name = branch_current_hg() 1024 1019 1025 1020 1026 if (SAGE_INCOMING_SERVER != DEFAULT_SERVER) or (SAGE_OUTGOING_SERVER != DEFAULT_SERVER): … … 1029 1035 hg_sage = HG('%s/devel/sage'%SAGE_ROOT, 1030 1036 'SAGE Library Source Code', 1031 pull_url='%s/sage-%s'%(SAGE_INCOMING_SERVER, temp_ branch_name),1032 push_url='%s/sage-%s'%(SAGE_OUTGOING_SERVER, temp_ branch_name),1037 pull_url='%s/sage-%s'%(SAGE_INCOMING_SERVER, temp_in_branch_name), 1038 push_url='%s/sage-%s'%(SAGE_OUTGOING_SERVER, temp_out_branch_name), 1033 1039 cloneable=True, 1034 1040 obj_name='sage')
Note: See TracChangeset
for help on using the changeset viewer.
